home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue25
/
tiptrix
/
LISTING1.pas
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1997-08-18
|
272 b
|
16 lines
procedure TForm1.CopySLToClipboard(SL : TStringList);
begin
with TMemo.Create(self) do
try
Top := -200;
Width := 10;
Height := 10;
Parent := self;
Lines.Assign(SL);
SelectAll;
CopyToClipboard;
Finally
Free;
end;
end;